home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Leonardo the Inventor
/
Leonardo The Inventor (93026)(Broderbund)(Riverdeep)(2004).iso
/
LEOWINMV
/
SHARED.DIR
/
03086_Script_TRANSITIONS LEO I
< prev
next >
Wrap
Text File
|
1996-04-01
|
1KB
|
56 lines
-- -----------------------------------------------------------
-- Handler dissolve performs a dissolve transition on the MAC
-- only.
on dissolve dissolveTime
if (the machineType = 256) then
-- PC
nothing
else
puppetTransition 51, dissolveTime
end if
end
-- -----------------------------------------------------------
-- Handler dissolveTo3Dpic performs a transition for 3D.
on dissolveto3Dpic pcduration, macduration
--pc transition is wipe down ,chunk size 4, mac transition is pixle dissolve
if (the machineType = 256) then
puppetTransition 3, pcduration, 4
else
puppetTransition 51, macduration
end if
end
-- -----------------------------------------------------------
-- Handler transitionToWords performs a transition when going
-- to a words section.
on transitionToWords
if (the machineType = 256) then
puppetTransition 9, 2, 4
else
puppetTransition 51, 2, 4
end if
end
-- -----------------------------------------------------------
-- Handler transitionToTime performs a transition when going
-- to a time section.
on transitionToTime
puppetTransition 9, 2, 4
end
-- -----------------------------------------------------------
-- Handler transitionToGame performs a transition when going
-- to a game section.
on transitionToGame
if (the machineType = 256) then
puppetTransition 9, 2, 4
else
puppetTransition 51, 2, 4
end if
end